home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_gimp / INCLUDE / GCK / GCK.H < prev    next >
C/C++ Source or Header  |  1999-09-17  |  2KB  |  49 lines

  1. /***************************************************************************/
  2. /* GCK - The General Convenience Kit. Generally useful conveniece routines */
  3. /* for GIMP plug-in writers and users of the GDK/GTK libraries.            */
  4. /* Copyright (C) 1996 Tom Bech                                             */
  5. /*                                                                         */
  6. /* This program is free software; you can redistribute it and/or modify    */
  7. /* it under the terms of the GNU General Public License as published by    */
  8. /* the Free Software Foundation; either version 2 of the License, or       */
  9. /* (at your option) any later version.                                     */
  10. /*                                                                         */
  11. /* This program is distributed in the hope that it will be useful,         */
  12. /* but WITHOUT ANY WARRANTY; without even the implied warranty of          */
  13. /* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the           */
  14. /* GNU General Public License for more details.                            */
  15. /*                                                                         */
  16. /* You should have received a copy of the GNU General Public License       */
  17. /* along with this program; if not, write to the Free Software             */
  18. /* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,   */
  19. /* USA.                                                                    */
  20. /***************************************************************************/
  21.  
  22. #ifndef __GCK_H__
  23. #define __GCK_H__
  24.  
  25. #include <glib.h>
  26. #include <gdk/gdk.h>
  27. #include <gtk/gtk.h>
  28.  
  29. #ifdef __cplusplus
  30. extern "C" {
  31. #endif
  32.  
  33. #define g_function_enter(fname)
  34. #define g_function_leave(fname)
  35.  
  36. #include <gck/gckcommon.h>
  37. #include <gck/gcktypes.h>
  38. #include <gck/gckcolor.h>
  39. #include <gck/gckmath.h>
  40. #include <gck/gckvector.h>
  41. #include <gck/gckui.h>
  42. #include <gck/gcklistbox.h>
  43.  
  44. #ifdef __cplusplus
  45. }
  46. #endif
  47.  
  48. #endif
  49.